home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / finger_freebsd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  69 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10534);
  10.  script_bugtraq_id(1803);
  11.  script_version ("$Revision: 1.8 $");
  12.  script_cve_id("CVE-2000-0915");
  13.  
  14.  name["english"] = "FreeBSD 4.1.1 Finger";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. There is a bug in the remote finger service that allows anyone to read 
  19. arbitrary files on this host by doing a 'finger' command on the name of 
  20. targeted file. 
  21.  
  22. For instance :
  23.  
  24.     finger /etc/passwd@target
  25.     
  26.  
  27. Will display the content of /etc/passwd
  28.  
  29. Solution : disable the finger service in /etc/inetd.conf and restart the inetd
  30. process, or upgrade your finger daemon
  31.  
  32. Risk factor : High";
  33.  
  34.  script_description(english:desc["english"]);
  35.  
  36.  summary["english"] = "Finger /path/to/file";
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_GATHER_INFO);
  40.  
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison");
  43.  family["english"] = "Finger abuses";
  44.  script_family(english:family["english"]);
  45.  script_dependencie("find_service.nes");
  46.  script_require_ports("Services/finger", 79);
  47.  exit(0);
  48. }
  49.  
  50. #
  51. # The script code starts here
  52. #
  53.  
  54. port = get_kb_item("Services/finger");
  55. if(!port)port = 79;
  56. if(get_port_state(port))
  57. {
  58.  soc = open_sock_tcp(port);
  59.  if(soc)
  60.  {
  61.   buf = string("/etc/passwd\r\n");
  62.   send(socket:soc, data:buf);
  63.   data = recv(socket:soc, length:65535);
  64.   close(soc);
  65.   if(egrep(pattern:".*root:.*:0:[01]:", string:data))
  66.       security_hole(port);
  67.  }
  68. }
  69.